X : data, 2d numpy array or scipy sparse matrix of shape (n_samples, n_features)
y : targets, 1d numpy array of shape (n_samples,)
| ``model.fit(X_train, [y_train])`` | |
|---|---|
| ``model.predict(X_test)`` | ``model.transform(X_test)`` |
| Classification | Preprocessing |
| Regression | Dimensionality Reduction |
| Clustering | Feature Extraction |
| Feature selection | |